App Configuration (1 / 13): You are setting up resources in Azure App Configuration and have the following entries:
- Key =
AppName:Region1:DbEndpoint
- Key =
AppName:region1:dbendpoint
- Key =
AppName:Service1:ApiEndpoint
- Key =
AppName:Service1:ApiEndpoint with Label = \0
- Key =
AppName:Service1:ApiEndpoint with Label = Test
What is the total count of distinct keys that will be saved in Azure App Configuration?
Answer:
AppName:Region1:DbEndpoint and AppName:region1:dbendpoint are considered two unique keys because they differ in case.
AppName:Service1:ApiEndpoint appears three times with different label variations:
- No label (default label)
- Label
\0 (acts as no label, but explicitly specified, and is also considered distinct)
- Label
Test
Since different labels create different versions of the same key, these are considered distinct entries.
Therefore, the total number of unique keys stored in Azure App Configuration is: 5.